Action hook 'customize_post_value_set_{$setting_id}'
in WP Core File wp-includes/class-wp-customize-manager.php at line 1882
Description
Announces when a specific setting's unsanitized post value has been set. Fires when the WP_Customize_Manager::set_post_value() method is called. The dynamic portion of the hook name, `$setting_id`, refers to the setting ID.
Occurrences
Filename |
Line Number |
wp-includes/class-wp-customize-manager.php |
1882 |
Parameters
Type |
Name |
Description |
mixed |
$value |
Unsanitized setting post value. |
WP_Customize_Manager |
$manager |
WP_Customize_Manager instance. |
PHP Doc
/**
* Announces when a specific setting's unsanitized post value has been set.
*
* Fires when the WP_Customize_Manager::set_post_value() method is called.
*
* The dynamic portion of the hook name, `$setting_id`, refers to the setting ID.
*
* @since 4.4.0
*
* @param mixed $value Unsanitized setting post value.
* @param WP_Customize_Manager $manager WP_Customize_Manager instance.
*/